home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / BASIC / 0156.ZIP / PE-MOD1.TXT < prev    next >
Text File  |  1983-05-30  |  1KB  |  40 lines

  1. I pulled this logo elimination mod to IBM's PERSONAL EDITOR
  2. from the Chicago BBS.  I had some technical problems and was
  3. unable to get the authors name.  Trust he doesn't mind.  I
  4. tested it and it works great.  Now if someone would only
  5. come up with a way to make NOTABS the default and have the
  6. PE stop stripping off trailing blanks !!  Here is the
  7. anti-logo patch:
  8.  
  9. The following changes will bypass the IBM logo displayed
  10. when the PERSONAL EDITOR is initiated and go directly to the
  11. edit screen:
  12. 1.  copy PE.EXE to E.ZAP (DEBUG won't work on an .EXE file)
  13. 2.  debug E.ZAP
  14. 3.  change the bytes at the following offsets using E
  15.           d95 now is ff. Change to eb
  16.           d96 now is 36. Change to 2d
  17.           dda now is 78. Change to 0d
  18. 4.  write e.zap back using the W command
  19. 5.  rename e.zap to e.exe
  20. 6.  initiate the editor using E instead of PE
  21. 7.  of course, any filename could be used instead of e
  22.           ---- detailed modification ----
  23.                 A>copy pe.exe e.zap
  24.                    1 File(s) copied
  25.                 A>debug e.zap
  26.                 -e d95
  27.                 0A94:0D95 FF.eb
  28.                 -e d96
  29.                 0A94:0D96  36.2d
  30.                 -e dda 0A94:0DDA
  31.                 78.0d
  32.                 -w
  33.                 Writing B280 bytes
  34.                 -q
  35.                 A>ren e.zap e.exe
  36.  
  37. After this modification is applied, the Personal Editor
  38. will go directly to the edit screen. Call it with E rather
  39. than PE.
  40.